home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 21 / AMIGAplus Sonderheft 21 (1999)(ICP)(DE)[!].iso / PublicDomain / Anwendungen / Ibiza / Install / English next >
Text File  |  1999-08-18  |  1KB  |  67 lines

  1.  
  2. ;Installer script for Ibiza 1.0 or higher
  3.  
  4. ;Ibiza by Marcus Tobias
  5.  
  6. (transcript "Install Ibiza")
  7.  
  8. (set #dir
  9.         (askdir
  10.                 (prompt "Where to copy Ibiza? (No dir will create)")
  11.                 (help @askdir-help)
  12.                 (default "SYS:")
  13.         )
  14. )
  15.  
  16. (set #docs
  17.         (askdir
  18.                 (prompt "Where to copy Ibiza-Docs?")
  19.                 (help @askdir-help)
  20.                 (default "HELP:")
  21.         )
  22. )
  23.  
  24.  
  25. (copyfiles
  26.         (prompt "Copy Ibiza")
  27.         (help @copyfiles-help)
  28.         (source "/")
  29.         (dest #dir )
  30.         (choices "Ibiza")
  31. )
  32.  
  33. (copyfiles
  34.         (prompt "Copy Ibiza.info")
  35.         (help @copyfiles-help)
  36.         (source "/")
  37.         (dest #dir )
  38.         (choices "Ibiza.info")
  39. )
  40.  
  41.  
  42. (copyfiles
  43.         (prompt "Copy Ibiza.guide")
  44.         (help @copyfiles-help)
  45.         (source "/Documents")
  46.         (dest #docs )
  47.         (choices "Ibiza.guide")
  48. )
  49.  
  50. (copyfiles
  51.         (prompt "Copy Ibiza.guide.info")
  52.         (help @copyfiles-help)
  53.         (source "/Documents")
  54.         (dest #docs )
  55.         (choices "Ibiza.guide.info")
  56. )
  57.  
  58. (copyfiles
  59.         (prompt "Copy Examples")
  60.         (help @copyfiles-help)
  61.         (source "/")
  62.         (dest #dir )
  63.         (choices "Projects")
  64. )
  65.  
  66. (message "Ok, have fun with Ibiza!")
  67.